PRB3: The Final Assignment! // Beginner

 
In-N-Out has one final assignment for you before firing you and paying you a much lower salary than you deserve. The company's higher-ups need to know what the highest number of calories one of their burger contains is. They have decided to give you a list of numbers containing the numbers of calories in an assortment of their burgers, and expect you to determine the number of calories in their largest burger.

Input Format

A list of numbers with size N from which you have to print out the largest number. N is the first number of the input.

Sample Input

5
102
3356
446
242
124

Output Format

A number representing the largest integer in the list of inputted numbers.

Sample Output

3356




You must be logged in to submit a solution.